home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / cad / acadfont.zip / READ.DOC < prev    next >
Text File  |  1993-02-19  |  4KB  |  85 lines

  1. This archive includes the following files:
  2.  
  3. LER      SHX    smooth leroy font
  4.  
  5. LERQ     SHX    quick leroy font (straight line segments)
  6.  
  7. DOT      SHX    ghost leroy font
  8.  
  9. MONOLER  SHX    mono-spaced smooth leroy font
  10.  
  11. MONOLERQ SHX    mono-spaced quick leroy font
  12.  
  13. MONODOT  SHX    mono-spaced ghost leroy font
  14.  
  15. LEROY    SCR    sample leroy script
  16.  
  17. LEROYQ   SCR    sample leroyq(uick) script
  18.  
  19. READ     DOC    This document
  20.  
  21. This is an update of an earlier upload which did not include the mono-spaced
  22. or the ghost leroy fonts.  After looking at the text I was embarrassed at how
  23. poorly I explained the setup.  It still isn't very good but you'll get the
  24. idea and we all have different ways of setting up the styles sizes to suit our
  25. particular drawing technique.
  26.  
  27.  
  28. When we automated our plat drafting we needed to continue using leroy style
  29. lettering; we are bound to by a Manual of Instructions.  To satisfy the
  30. requirements Tom Noble of our Alaska office wrote the shape file for a Leroy
  31. font.  We soon found out that regens took forever with the smooth leroy font
  32. because of the arcs in the lettering, so Tom wrote a shape file called Leroy
  33. Q(uick) which occupies the same space as the leroy font but is composed of
  34. straight line segments.  The quick font is much faster and we use it during
  35. the construction phase of the drawing.  It wasn't long before our draftsmen
  36. asked for a ghost lettering style in leroy so this shape file has been added
  37. to the system.  The ghost lettering was originally based on dots or points but
  38. we found that it beat the heck out of the plotter so the fonts are now based
  39. on circles with small diameters; a little slower but the plotter (not to
  40. mention the pens) is much happier.
  41.  
  42. We create our drawings in real units, 1=1, therefore the height and size of
  43. the lettering styles, V80, S80, V100, S100, etc., have to scaled up
  44. proportionally.  To accomplish this we multiply the true leroy template size
  45. (for V80, 0.08) times the final plot scale, which is stored in the USERR1
  46. drawing variable.   This keeps everything in proper spatial relationship; at
  47. 1"=1,320 feet (or 1/4 mile) 80 leroy lettering is 105.6 feet tall.  When the
  48. drawing is plotted to the predefined scale the lettering will be scaled back
  49. down to the correct height.
  50.  
  51. We begin a drawing by running Leroyq.scr and prior to final plotting we run
  52. leroy.scr to substitute the smooth leroy font.
  53.  
  54. This is our leroy script file:
  55. regenauto off
  56. style S50 LER (* 0.05 sc) 1 22.5 N N N
  57. style S60 LER (* 0.06 sc) 1 22.5 N N N
  58. style S80 LER (* 0.08 sc) 1 22.5 N N N
  59. style S100 LER (* 0.1 sc) 1 22.5 N N N
  60. style S120 LER (* 0.12 sc) 1 22.5 N N N
  61. style S140 LER (* 0.14 sc) 1 22.5 N N N
  62. style S175 LER (* 0.175 sc) 1 22.5 N N N
  63. style S240 LER (* 0.24 sc) 1 22.5 N N N
  64. style S350 LER (* 0.35 sc) 1 22.5 N N N
  65. style V50 LER (* 0.05 sc) 1 0.0 N N N
  66. style V60 LER (* 0.06 sc) 1 0.0 N N N
  67. style V80 LER (* 0.08 sc) 1 0.0 N N N
  68. style V100 LER (* 0.1 sc) 1 0.0 N N N
  69. style V120 LER (* 0.12 sc) 1 0.0 N N N
  70. style V140 LER (* 0.14 sc) 1 0.0 N N N
  71. style V175 LER (* 0.175 sc) 1 0.0 N N N
  72. style V240 LER (* 0.24 sc) 1 0.0 N N N
  73. style V350 LER (* 0.35 sc) 1 0.0 N N N
  74. regenauto on
  75.  
  76. style - issues the style command
  77. S50   - names the style
  78. LER   - specifies shape (shx) file
  79. (* 0.05 sc) - system specific, multiplies the template size times the user
  80.               defined variable sc (plot scale for the final drawing)
  81. 1     - defines width factor
  82. 22.5  - defines obliquing angle for slant templates
  83. N N N - answers NO to the remaining questions in the style command
  84.  
  85.